home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / interrupts / src / remintserver.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  909 b   |  50 lines

  1. /*
  2.     $Id: remintserver.c 1.1 1995/12/17 21:45:42 digulla Exp digulla $
  3.     $Log: remintserver.c $
  4.  * Revision 1.1  1995/12/17  21:45:42  digulla
  5.  * Initial revision
  6.  *
  7.     Desc:
  8.     Lang: english
  9. */
  10. #include "exec_intern.h"
  11.  
  12. /*****************************************************************************
  13.  
  14.     NAME */
  15.     #include <clib/exec_protos.h>
  16.  
  17.     __AROS_LH2(void, RemIntServer,
  18.  
  19. /*  SYNOPSIS */
  20.     __AROS_LA(long              , intNumber, D0),
  21.     __AROS_LA(struct Interrupt *, interrupt, A1),
  22.  
  23. /*  LOCATION */
  24.     struct ExecBase *, SysBase, 29, Exec)
  25.  
  26. /*  FUNCTION
  27.  
  28.     INPUTS
  29.  
  30.     RESULT
  31.  
  32.     NOTES
  33.  
  34.     EXAMPLE
  35.  
  36.     BUGS
  37.  
  38.     SEE ALSO
  39.  
  40.     INTERNALS
  41.  
  42.     HISTORY
  43.     29-10-95    digulla automatically created from
  44.                 exec_lib.fd and clib/exec_protos.h
  45.  
  46. *****************************************************************************/
  47. {
  48.     __AROS_BASE_EXT_DECL(struct ExecBase *,SysBase)
  49. } /* RemIntServer */
  50.